home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / adodb / adodb-lib.inc.php < prev    next >
PHP Script  |  2005-05-17  |  32KB  |  996 lines

  1. <?php
  2.  
  3. // security - hide paths
  4. if (!defined('ADODB_DIR')) die();
  5.  
  6. global $ADODB_INCLUDED_LIB;
  7. $ADODB_INCLUDED_LIB = 1;
  8.  
  9. /* 
  10.  @version V4.63 17 May 2005 (c) 2000-2005 John Lim (jlim\@natsoft.com.my). All rights reserved.
  11.   Released under both BSD license and Lesser GPL library license. 
  12.   Whenever there is any discrepancy between the two licenses, 
  13.   the BSD license will take precedence. See License.txt. 
  14.   Set tabs to 4 for best viewing.
  15.   
  16.   Less commonly used functions are placed here to reduce size of adodb.inc.php. 
  17. */ 
  18.  
  19.  
  20. // Force key to upper. 
  21. // See also http://www.php.net/manual/en/function.array-change-key-case.php
  22. function _array_change_key_case($an_array)
  23. {
  24.     if (is_array($an_array)) {
  25.         $new_array = array();
  26.         foreach($an_array as $key=>$value)
  27.             $new_array[strtoupper($key)] = $value;
  28.  
  29.            return $new_array;
  30.    }
  31.  
  32.     return $an_array;
  33. }
  34.  
  35. function _adodb_replace(&$zthis, $table, $fieldArray, $keyCol, $autoQuote, $has_autoinc)
  36. {
  37.         if (count($fieldArray) == 0) return 0;
  38.         $first = true;
  39.         $uSet = '';
  40.         
  41.         if (!is_array($keyCol)) {
  42.             $keyCol = array($keyCol);
  43.         }
  44.         foreach($fieldArray as $k => $v) {
  45.             if ($autoQuote && !is_numeric($v) and strncmp($v,"'",1) !== 0 and strcasecmp($v,'null')!=0) {
  46.                 $v = $zthis->qstr($v);
  47.                 $fieldArray[$k] = $v;
  48.             }
  49.             if (in_array($k,$keyCol)) continue; // skip UPDATE if is key
  50.             
  51.             if ($first) {
  52.                 $first = false;            
  53.                 $uSet = "$k=$v";
  54.             } else
  55.                 $uSet .= ",$k=$v";
  56.         }
  57.          
  58.         $where = false;
  59.         foreach ($keyCol as $v) {
  60.             if ($where) $where .= " and $v=$fieldArray[$v]";
  61.             else $where = "$v=$fieldArray[$v]";
  62.         }
  63.         
  64.         if ($uSet && $where) {
  65.             $update = "UPDATE $table SET $uSet WHERE $where";
  66.  
  67.             $rs = $zthis->Execute($update);
  68.             
  69.             
  70.             if ($rs) {
  71.                 if ($zthis->poorAffectedRows) {
  72.                 /*
  73.                  The Select count(*) wipes out any errors that the update would have returned. 
  74.                 http://phplens.com/lens/lensforum/msgs.php?id=5696
  75.                 */
  76.                     if ($zthis->ErrorNo()<>0) return 0;
  77.                     
  78.                 # affected_rows == 0 if update field values identical to old values
  79.                 # for mysql - which is silly. 
  80.             
  81.                     $cnt = $zthis->GetOne("select count(*) from $table where $where");
  82.                     if ($cnt > 0) return 1; // record already exists
  83.                 } else {
  84.                     if (($zthis->Affected_Rows()>0)) return 1;
  85.                 }
  86.             } else
  87.                 return 0;
  88.         }
  89.         
  90.     //    print "<p>Error=".$this->ErrorNo().'<p>';
  91.         $first = true;
  92.         foreach($fieldArray as $k => $v) {
  93.             if ($has_autoinc && in_array($k,$keyCol)) continue; // skip autoinc col
  94.             
  95.             if ($first) {
  96.                 $first = false;            
  97.                 $iCols = "$k";
  98.                 $iVals = "$v";
  99.             } else {
  100.                 $iCols .= ",$k";
  101.                 $iVals .= ",$v";
  102.             }                
  103.         }
  104.         $insert = "INSERT INTO $table ($iCols) VALUES ($iVals)"; 
  105.         $rs = $zthis->Execute($insert);
  106.         return ($rs) ? 2 : 0;
  107. }
  108.  
  109. // Requires $ADODB_FETCH_MODE = ADODB_FETCH_NUM
  110. function _adodb_getmenu(&$zthis, $name,$defstr='',$blank1stItem=true,$multiple=false,
  111.             $size=0, $selectAttr='',$compareFields0=true)
  112. {
  113.     $hasvalue = false;
  114.  
  115.     if ($multiple or is_array($defstr)) {
  116.         if ($size==0) $size=5;
  117.         $attr = ' multiple size="'.$size.'"';
  118.         if (!strpos($name,'[]')) $name .= '[]';
  119.     } else if ($size) $attr = ' size="'.$size.'"';
  120.     else $attr ='';
  121.     
  122.     $s = '<select name="'.$name.'"'.$attr.' '.$selectAttr.'>';
  123.     if ($blank1stItem) 
  124.         if (is_string($blank1stItem))  {
  125.             $barr = explode(':',$blank1stItem);
  126.             if (sizeof($barr) == 1) $barr[] = '';
  127.             $s .= "\n<option value=\"".$barr[0]."\">".$barr[1]."</option>";
  128.         } else $s .= "\n<option></option>";
  129.  
  130.     if ($zthis->FieldCount() > 1) $hasvalue=true;
  131.     else $compareFields0 = true;
  132.     
  133.     $value = '';
  134.     $optgroup = null;
  135.     $firstgroup = true;
  136.     $fieldsize = sizeof($zthis->fields);
  137.     while(!$zthis->EOF) {
  138.         $zval = rtrim(reset($zthis->fields));
  139.  
  140.         if ($blank1stItem && $zval=="") {
  141.             $zthis->MoveNext();
  142.             continue;
  143.         }
  144.  
  145.         if ($fieldsize > 1) {
  146.             if (isset($zthis->fields[1]))
  147.                 $zval2 = rtrim($zthis->fields[1]);
  148.             else
  149.                 $zval2 = rtrim(next($zthis->fields));
  150.         }
  151.         $selected = ($compareFields0) ? $zval : $zval2;
  152.         
  153.         $group = '';
  154.         if ($fieldsize > 2) {
  155.             $group = rtrim($zthis->fields[2]);
  156.         }
  157.  
  158.         if ($optgroup != $group) {
  159.             $optgroup = $group;
  160.             if ($firstgroup) {
  161.                 $firstgroup = false;
  162.                 $s .="\n<optgroup label='". htmlspecialchars($group) ."'>";
  163.             } else {
  164.                 $s .="\n</optgroup>";
  165.                 $s .="\n<optgroup label='". htmlspecialchars($group) ."'>";
  166.             }
  167.         }
  168.     
  169.         if ($hasvalue) 
  170.             $value = " value='".htmlspecialchars($zval2)."'";
  171.         
  172.         if (is_array($defstr))  {
  173.             
  174.             if (in_array($selected,$defstr)) 
  175.                 $s .= "\n<option selected='selected'$value>".htmlspecialchars($zval).'</option>';
  176.             else 
  177.                 $s .= "\n<option".$value.'>'.htmlspecialchars($zval).'</option>';
  178.         }
  179.         else {
  180.             if (strcasecmp($selected,$defstr)==0) 
  181.                 $s .= "\n<option selected='selected'$value>".htmlspecialchars($zval).'</option>';
  182.             else
  183.                 $s .= "\n<option".$value.'>'.htmlspecialchars($zval).'</option>';
  184.         }
  185.         $zthis->MoveNext();
  186.     } // while
  187.     
  188.     // closing last optgroup
  189.     if($optgroup != null) {
  190.         $s .= "\n</optgroup>";
  191.     }
  192.     return $s ."\n</select>\n";
  193. }
  194.  
  195. // Requires $ADODB_FETCH_MODE = ADODB_FETCH_NUM
  196. function _adodb_getmenu_gp(&$zthis, $name,$defstr='',$blank1stItem=true,$multiple=false,
  197.             $size=0, $selectAttr='',$compareFields0=true)
  198. {
  199.     $hasvalue = false;
  200.  
  201.     if ($multiple or is_array($defstr)) {
  202.         if ($size==0) $size=5;
  203.         $attr = ' multiple size="'.$size.'"';
  204.         if (!strpos($name,'[]')) $name .= '[]';
  205.     } else if ($size) $attr = ' size="'.$size.'"';
  206.     else $attr ='';
  207.     
  208.     $s = '<select name="'.$name.'"'.$attr.' '.$selectAttr.'>';
  209.     if ($blank1stItem) 
  210.         if (is_string($blank1stItem))  {
  211.             $barr = explode(':',$blank1stItem);
  212.             if (sizeof($barr) == 1) $barr[] = '';
  213.             $s .= "\n<option value=\"".$barr[0]."\">".$barr[1]."</option>";
  214.         } else $s .= "\n<option></option>";
  215.  
  216.     if ($zthis->FieldCount() > 1) $hasvalue=true;
  217.     else $compareFields0 = true;
  218.     
  219.     $value = '';
  220.     $optgroup = null;
  221.     $firstgroup = true;
  222.     $fieldsize = sizeof($zthis->fields);
  223.     while(!$zthis->EOF) {
  224.         $zval = rtrim(reset($zthis->fields));
  225.  
  226.         if ($blank1stItem && $zval=="") {
  227.             $zthis->MoveNext();
  228.             continue;
  229.         }
  230.  
  231.         if ($fieldsize > 1) {
  232.             if (isset($zthis->fields[1]))
  233.                 $zval2 = rtrim($zthis->fields[1]);
  234.             else
  235.                 $zval2 = rtrim(next($zthis->fields));
  236.         }
  237.         $selected = ($compareFields0) ? $zval : $zval2;
  238.         
  239.         $group = '';
  240.         if ($fieldsize > 2) {
  241.             $group = rtrim($zthis->fields[2]);
  242.         }
  243.  
  244.         if ($optgroup != $group) {
  245.             $optgroup = $group;
  246.             if ($firstgroup) {
  247.                 $firstgroup = false;
  248.                 $s .="\n<optgroup label='". htmlspecialchars($group) ."'>";
  249.             } else {
  250.                 $s .="\n</optgroup>";
  251.                 $s .="\n<optgroup label='". htmlspecialchars($group) ."'>";
  252.             }
  253.         }
  254.     
  255.         if ($hasvalue) 
  256.             $value = " value='".htmlspecialchars($zval2)."'";
  257.         
  258.         if (is_array($defstr))  {
  259.             
  260.             if (in_array($selected,$defstr)) 
  261.                 $s .= "\n<option selected='selected'$value>".htmlspecialchars($zval).'</option>';
  262.             else 
  263.                 $s .= "\n<option".$value.'>'.htmlspecialchars($zval).'</option>';
  264.         }
  265.         else {
  266.             if (strcasecmp($selected,$defstr)==0) 
  267.                 $s .= "\n<option selected='selected'$value>".htmlspecialchars($zval).'</option>';
  268.             else
  269.                 $s .= "\n<option".$value.'>'.htmlspecialchars($zval).'</option>';
  270.         }
  271.         $zthis->MoveNext();
  272.     } // while
  273.     
  274.     // closing last optgroup
  275.     if($optgroup != null) {
  276.         $s .= "\n</optgroup>";
  277.     }
  278.     return $s ."\n</select>\n";
  279. }
  280.  
  281.  
  282. /*
  283.     Count the number of records this sql statement will return by using
  284.     query rewriting techniques...
  285.     
  286.     Does not work with UNIONs.
  287. */
  288. function _adodb_getcount(&$zthis, $sql,$inputarr=false,$secs2cache=0) 
  289. {
  290.     $qryRecs = 0;
  291.     
  292.      if (preg_match("/^\s*SELECT\s+DISTINCT/is", $sql) || preg_match('/\s+GROUP\s+BY\s+/is',$sql)) {
  293.         // ok, has SELECT DISTINCT or GROUP BY so see if we can use a table alias
  294.         // but this is only supported by oracle and postgresql...
  295.         if ($zthis->dataProvider == 'oci8') {
  296.             
  297.             $rewritesql = preg_replace('/(\sORDER\s+BY\s.*)/is','',$sql);
  298.             
  299.             // Allow Oracle hints to be used for query optimization, Chris Wrye
  300.             if (preg_match('#/\\*+.*?\\*\\/#', $sql, $hint)) {
  301.                 $rewritesql = "SELECT ".$hint[0]." COUNT(*) FROM (".$rewritesql.")"; 
  302.             } else
  303.                 $rewritesql = "SELECT COUNT(*) FROM (".$rewritesql.")"; 
  304.             
  305.         } else if ( $zthis->databaseType == 'postgres' || $zthis->databaseType == 'postgres7')  {
  306.             
  307.             $info = $zthis->ServerInfo();
  308.             if (substr($info['version'],0,3) >= 7.1) { // good till version 999
  309.                 $rewritesql = preg_replace('/(\sORDER\s+BY\s.*)/is','',$sql);
  310.                 $rewritesql = "SELECT COUNT(*) FROM ($rewritesql) _ADODB_ALIAS_";
  311.             }
  312.         }
  313.     } else { 
  314.         // now replace SELECT ... FROM with SELECT COUNT(*) FROM
  315.         
  316.         $rewritesql = preg_replace(
  317.                     '/^\s*SELECT\s.*\s+FROM\s/Uis','SELECT COUNT(*) FROM ',$sql);
  318.         
  319.         // fix by alexander zhukov, alex#unipack.ru, because count(*) and 'order by' fails 
  320.         // with mssql, access and postgresql. Also a good speedup optimization - skips sorting!
  321.         $rewritesql = preg_replace('/(\sORDER\s+BY\s.*)/is','',$rewritesql); 
  322.     }
  323.     
  324.     if (isset($rewritesql) && $rewritesql != $sql) {
  325.         if ($secs2cache) {
  326.             // we only use half the time of secs2cache because the count can quickly
  327.             // become inaccurate if new records are added
  328.             $qryRecs = $zthis->CacheGetOne($secs2cache/2,$rewritesql,$inputarr);
  329.             
  330.         } else {
  331.             $qryRecs = $zthis->GetOne($rewritesql,$inputarr);
  332.           }
  333.         if ($qryRecs !== false) return $qryRecs;
  334.     }
  335.     //--------------------------------------------
  336.     // query rewrite failed - so try slower way...
  337.     
  338.     // strip off unneeded ORDER BY if no UNION
  339.     if (preg_match('/\s*UNION\s*/is', $sql)) $rewritesql = $sql;
  340.     else $rewritesql = preg_replace('/(\sORDER\s+BY\s.*)/is','',$sql); 
  341.     
  342.     $rstest = &$zthis->Execute($rewritesql,$inputarr);
  343.     if ($rstest) {
  344.               $qryRecs = $rstest->RecordCount();
  345.         if ($qryRecs == -1) { 
  346.         global $ADODB_EXTENSION;
  347.         // some databases will return -1 on MoveLast() - change to MoveNext()
  348.             if ($ADODB_EXTENSION) {
  349.                 while(!$rstest->EOF) {
  350.                     adodb_movenext($rstest);
  351.                 }
  352.             } else {
  353.                 while(!$rstest->EOF) {
  354.                     $rstest->MoveNext();
  355.                 }
  356.             }
  357.             $qryRecs = $rstest->_currentRow;
  358.         }
  359.         $rstest->Close();
  360.         if ($qryRecs == -1) return 0;
  361.     }
  362.     
  363.     return $qryRecs;
  364. }
  365.  
  366. /*
  367.      Code originally from "Cornel G" <conyg@fx.ro>
  368.  
  369.     This code will not work with SQL that has UNION in it    
  370.     
  371.     Also if you are using CachePageExecute(), there is a strong possibility that
  372.     data will get out of synch. use CachePageExecute() only with tables that
  373.     rarely change.
  374. */
  375. function &_adodb_pageexecute_all_rows(&$zthis, $sql, $nrows, $page, 
  376.                         $inputarr=false, $secs2cache=0) 
  377. {
  378.     $atfirstpage = false;
  379.     $atlastpage = false;
  380.     $lastpageno=1;
  381.  
  382.     // If an invalid nrows is supplied, 
  383.     // we assume a default value of 10 rows per page
  384.     if (!isset($nrows) || $nrows <= 0) $nrows = 10;
  385.  
  386.     $qryRecs = false; //count records for no offset
  387.     
  388.     $qryRecs = _adodb_getcount($zthis,$sql,$inputarr,$secs2cache);
  389.     $lastpageno = (int) ceil($qryRecs / $nrows);
  390.     $zthis->_maxRecordCount = $qryRecs;
  391.     
  392.  
  393.  
  394.     // ***** Here we check whether $page is the last page or 
  395.     // whether we are trying to retrieve 
  396.     // a page number greater than the last page number.
  397.     if ($page >= $lastpageno) {
  398.         $page = $lastpageno;
  399.         $atlastpage = true;
  400.     }
  401.     
  402.     // If page number <= 1, then we are at the first page
  403.     if (empty($page) || $page <= 1) {    
  404.         $page = 1;
  405.         $atfirstpage = true;
  406.     }
  407.     
  408.     // We get the data we want
  409.     $offset = $nrows * ($page-1);
  410.     if ($secs2cache > 0) 
  411.         $rsreturn = &$zthis->CacheSelectLimit($secs2cache, $sql, $nrows, $offset, $inputarr);
  412.     else 
  413.         $rsreturn = &$zthis->SelectLimit($sql, $nrows, $offset, $inputarr, $secs2cache);
  414.  
  415.     
  416.     // Before returning the RecordSet, we set the pagination properties we need
  417.     if ($rsreturn) {
  418.         $rsreturn->_maxRecordCount = $qryRecs;
  419.         $rsreturn->rowsPerPage = $nrows;
  420.         $rsreturn->AbsolutePage($page);
  421.         $rsreturn->AtFirstPage($atfirstpage);
  422.         $rsreturn->AtLastPage($atlastpage);
  423.         $rsreturn->LastPageNo($lastpageno);
  424.     }
  425.     return $rsreturn;
  426. }
  427.  
  428. // Ivßn Oliva version
  429. function &_adodb_pageexecute_no_last_page(&$zthis, $sql, $nrows, $page, $inputarr=false, $secs2cache=0) 
  430. {
  431.  
  432.     $atfirstpage = false;
  433.     $atlastpage = false;
  434.     
  435.     if (!isset($page) || $page <= 1) {    // If page number <= 1, then we are at the first page
  436.         $page = 1;
  437.         $atfirstpage = true;
  438.     }
  439.     if ($nrows <= 0) $nrows = 10;    // If an invalid nrows is supplied, we assume a default value of 10 rows per page
  440.     
  441.     // ***** Here we check whether $page is the last page or whether we are trying to retrieve a page number greater than 
  442.     // the last page number.
  443.     $pagecounter = $page + 1;
  444.     $pagecounteroffset = ($pagecounter * $nrows) - $nrows;
  445.     if ($secs2cache>0) $rstest = &$zthis->CacheSelectLimit($secs2cache, $sql, $nrows, $pagecounteroffset, $inputarr);
  446.     else $rstest = &$zthis->SelectLimit($sql, $nrows, $pagecounteroffset, $inputarr, $secs2cache);
  447.     if ($rstest) {
  448.         while ($rstest && $rstest->EOF && $pagecounter>0) {
  449.             $atlastpage = true;
  450.             $pagecounter--;
  451.             $pagecounteroffset = $nrows * ($pagecounter - 1);
  452.             $rstest->Close();
  453.             if ($secs2cache>0) $rstest = &$zthis->CacheSelectLimit($secs2cache, $sql, $nrows, $pagecounteroffset, $inputarr);
  454.             else $rstest = &$zthis->SelectLimit($sql, $nrows, $pagecounteroffset, $inputarr, $secs2cache);
  455.         }
  456.         if ($rstest) $rstest->Close();
  457.     }
  458.     if ($atlastpage) {    // If we are at the last page or beyond it, we are going to retrieve it
  459.         $page = $pagecounter;
  460.         if ($page == 1) $atfirstpage = true;    // We have to do this again in case the last page is the same as the first
  461.             //... page, that is, the recordset has only 1 page.
  462.     }
  463.     
  464.     // We get the data we want
  465.     $offset = $nrows * ($page-1);
  466.     if ($secs2cache > 0) $rsreturn = &$zthis->CacheSelectLimit($secs2cache, $sql, $nrows, $offset, $inputarr);
  467.     else $rsreturn = &$zthis->SelectLimit($sql, $nrows, $offset, $inputarr, $secs2cache);
  468.     
  469.     // Before returning the RecordSet, we set the pagination properties we need
  470.     if ($rsreturn) {
  471.         $rsreturn->rowsPerPage = $nrows;
  472.         $rsreturn->AbsolutePage($page);
  473.         $rsreturn->AtFirstPage($atfirstpage);
  474.         $rsreturn->AtLastPage($atlastpage);
  475.     }
  476.     return $rsreturn;
  477. }
  478.  
  479. function _adodb_getupdatesql(&$zthis,&$rs, $arrFields,$forceUpdate=false,$magicq=false,$force=2)
  480. {
  481.         if (!$rs) {
  482.             printf(ADODB_BAD_RS,'GetUpdateSQL');
  483.             return false;
  484.         }
  485.     
  486.         $fieldUpdatedCount = 0;
  487.         $arrFields = _array_change_key_case($arrFields);
  488.  
  489.         $hasnumeric = isset($rs->fields[0]);
  490.         $setFields = '';
  491.         
  492.         // Loop through all of the fields in the recordset
  493.         for ($i=0, $max=$rs->FieldCount(); $i < $max; $i++) {
  494.             // Get the field from the recordset
  495.             $field = $rs->FetchField($i);
  496.  
  497.             // If the recordset field is one
  498.             // of the fields passed in then process.
  499.             $upperfname = strtoupper($field->name);
  500.             if (adodb_key_exists($upperfname,$arrFields,$force)) {
  501.                 
  502.                 // If the existing field value in the recordset
  503.                 // is different from the value passed in then
  504.                 // go ahead and append the field name and new value to
  505.                 // the update query.
  506.                 
  507.                 if ($hasnumeric) $val = $rs->fields[$i];
  508.                 else if (isset($rs->fields[$upperfname])) $val = $rs->fields[$upperfname];
  509.                 else if (isset($rs->fields[$field->name])) $val =  $rs->fields[$field->name];
  510.                 else if (isset($rs->fields[strtolower($upperfname)])) $val =  $rs->fields[strtolower($upperfname)];
  511.                 else $val = '';
  512.                 
  513.             
  514.                 if ($forceUpdate || strcmp($val, $arrFields[$upperfname])) {
  515.                     // Set the counter for the number of fields that will be updated.
  516.                     $fieldUpdatedCount++;
  517.  
  518.                     // Based on the datatype of the field
  519.                     // Format the value properly for the database
  520.                     $type = $rs->MetaType($field->type);
  521.                         
  522.  
  523.                     if ($type == 'null') {
  524.                         $type = 'C';
  525.                     }
  526.                     
  527.                     if (strpos($upperfname,' ') !== false)
  528.                         $fnameq = $zthis->nameQuote.$upperfname.$zthis->nameQuote;
  529.                     else
  530.                         $fnameq = $upperfname;
  531.                     
  532.                     
  533.                 // is_null requires php 4.0.4
  534.                 //********************************************************//
  535.                 if (is_null($arrFields[$upperfname])
  536.                     || (empty($arrFields[$upperfname]) && strlen($arrFields[$upperfname]) == 0)
  537.                     || $arrFields[$upperfname] === 'null'
  538.                     )
  539.                 {
  540.                     switch ($force) {
  541.  
  542.                         //case 0:
  543.                         //    //Ignore empty values. This is allready handled in "adodb_key_exists" function.
  544.                         //break;
  545.  
  546.                         case 1:
  547.                             //Set null
  548.                             $setFields .= $field->name . " = null, ";
  549.                         break;
  550.                             
  551.                         case 2:
  552.                             //Set empty
  553.                             $arrFields[$upperfname] = "";
  554.                             $setFields .= _adodb_column_sql($zthis, 'U', $type, $upperfname, $fnameq,$arrFields, $magicq);
  555.                         break;
  556.                         default:
  557.                         case 3:
  558.                             //Set the value that was given in array, so you can give both null and empty values
  559.                             if (is_null($arrFields[$upperfname]) || $arrFields[$upperfname] === 'null') {
  560.                                 $setFields .= $field->name . " = null, ";
  561.                             } else {
  562.                                 $setFields .= _adodb_column_sql($zthis, 'U', $type, $upperfname, $fnameq,$arrFields, $magicq);
  563.                             }
  564.                         break;
  565.                     }
  566.                 //********************************************************//
  567.                 } else {
  568.                         //we do this so each driver can customize the sql for
  569.                         //DB specific column types. 
  570.                         //Oracle needs BLOB types to be handled with a returning clause
  571.                         //postgres has special needs as well
  572.                         $setFields .= _adodb_column_sql($zthis, 'U', $type, $upperfname, $fnameq,
  573.                                                           $arrFields, $magicq);
  574.                     }
  575.                 }
  576.             }
  577.         }
  578.  
  579.         // If there were any modified fields then build the rest of the update query.
  580.         if ($fieldUpdatedCount > 0 || $forceUpdate) {
  581.                     // Get the table name from the existing query.
  582.             if (!empty($rs->tableName)) $tableName = $rs->tableName;
  583.             else preg_match("/FROM\s+".ADODB_TABLE_REGEX."/is", $rs->sql, $tableName);
  584.     
  585.             // Get the full where clause excluding the word "WHERE" from
  586.             // the existing query.
  587.             preg_match('/\sWHERE\s(.*)/is', $rs->sql, $whereClause);
  588.             
  589.             $discard = false;
  590.             // not a good hack, improvements?
  591.             if ($whereClause) {
  592.                 if (preg_match('/\s(ORDER\s.*)/is', $whereClause[1], $discard));
  593.                 else if (preg_match('/\s(LIMIT\s.*)/is', $whereClause[1], $discard));
  594.                 else preg_match('/\s(FOR UPDATE.*)/is', $whereClause[1], $discard);
  595.             } else
  596.                 $whereClause = array(false,false);
  597.                 
  598.             if ($discard)
  599.                 $whereClause[1] = substr($whereClause[1], 0, strlen($whereClause[1]) - strlen($discard[1]));
  600.             
  601.         $sql = 'UPDATE '.$tableName[1].' SET '.substr($setFields, 0, -2);
  602.         if (strlen($whereClause[1]) > 0) 
  603.             $sql .= ' WHERE '.$whereClause[1];
  604.  
  605.         return $sql;
  606.  
  607.         } else {
  608.             return false;
  609.     }
  610. }
  611.  
  612. function adodb_key_exists($key, &$arr,$force=2)
  613. {
  614.     if ($force<=0) {
  615.         // the following is the old behaviour where null or empty fields are ignored
  616.         return (!empty($arr[$key])) || (isset($arr[$key]) && strlen($arr[$key])>0);
  617.     }
  618.  
  619.     if (isset($arr[$key])) return true;
  620.     ## null check below
  621.     if (ADODB_PHPVER >= 0x4010) return array_key_exists($key,$arr);
  622.     return false;
  623. }
  624.  
  625. /**
  626.  * There is a special case of this function for the oci8 driver.
  627.  * The proper way to handle an insert w/ a blob in oracle requires
  628.  * a returning clause with bind variables and a descriptor blob.
  629.  * 
  630.  * 
  631.  */
  632. function _adodb_getinsertsql(&$zthis,&$rs,$arrFields,$magicq=false,$force=2)
  633. {
  634. static $cacheRS = false;
  635. static $cacheSig = 0;
  636. static $cacheCols;
  637.  
  638.     $tableName = '';
  639.     $values = '';
  640.     $fields = '';
  641.     $recordSet = null;
  642.     $arrFields = _array_change_key_case($arrFields);
  643.     $fieldInsertedCount = 0;
  644.     
  645.     if (is_string($rs)) {
  646.         //ok we have a table name
  647.         //try and get the column info ourself.
  648.         $tableName = $rs;            
  649.     
  650.         //we need an object for the recordSet
  651.         //because we have to call MetaType.
  652.         //php can't do a $rsclass::MetaType()
  653.         $rsclass = $zthis->rsPrefix.$zthis->databaseType;
  654.         $recordSet =& new $rsclass(-1,$zthis->fetchMode);
  655.         $recordSet->connection = &$zthis;
  656.         
  657.         if (is_string($cacheRS) && $cacheRS == $rs) {
  658.             $columns =& $cacheCols;
  659.         } else {
  660.             $columns = $zthis->MetaColumns( $tableName );
  661.             $cacheRS = $tableName;
  662.             $cacheCols = $columns;
  663.         }
  664.     } else if (is_subclass_of($rs, 'adorecordset')) {
  665.         if (isset($rs->insertSig) && is_integer($cacheRS) && $cacheRS == $rs->insertSig) {
  666.             $columns =& $cacheCols;
  667.         } else {
  668.             for ($i=0, $max=$rs->FieldCount(); $i < $max; $i++) 
  669.                 $columns[] = $rs->FetchField($i);
  670.             $cacheRS = $cacheSig;
  671.             $cacheCols = $columns;
  672.             $rs->insertSig = $cacheSig++;
  673.         }
  674.         $recordSet =& $rs;
  675.     
  676.     } else {
  677.         printf(ADODB_BAD_RS,'GetInsertSQL');
  678.         return false;
  679.     }
  680.  
  681.     // Loop through all of the fields in the recordset
  682.     foreach( $columns as $field ) { 
  683.         $upperfname = strtoupper($field->name);
  684.         if (adodb_key_exists($upperfname,$arrFields,$force)) {
  685.             $bad = false;
  686.             if (strpos($upperfname,' ') !== false)
  687.                 $fnameq = $zthis->nameQuote.$upperfname.$zthis->nameQuote;
  688.             else
  689.                 $fnameq = $upperfname;
  690.             
  691.             $type = $recordSet->MetaType($field->type);
  692.             
  693.             /********************************************************/
  694.             if (is_null($arrFields[$upperfname])
  695.                 || (empty($arrFields[$upperfname]) && strlen($arrFields[$upperfname]) == 0)
  696.                 || $arrFields[$upperfname] === 'null'
  697.                 )
  698.                {
  699.                     switch ($force) {
  700.  
  701.                         case 0: // we must always set null if missing
  702.                             $bad = true;
  703.                             break;
  704.                             
  705.                         case 1:
  706.                             $values  .= "null, ";
  707.                         break;
  708.         
  709.                         case 2:
  710.                             //Set empty
  711.                             $arrFields[$upperfname] = "";
  712.                             $values .= _adodb_column_sql($zthis, 'I', $type, $upperfname, $fnameq,$arrFields, $magicq);
  713.                         break;
  714.  
  715.                         default:
  716.                         case 3:
  717.                             //Set the value that was given in array, so you can give both null and empty values
  718.                             if (is_null($arrFields[$upperfname]) || $arrFields[$upperfname] === 'null') { 
  719.                                 $values  .= "null, ";
  720.                             } else {
  721.                                 $values .= _adodb_column_sql($zthis, 'I', $type, $upperfname, $fnameq, $arrFields, $magicq);
  722.                              }
  723.                           break;
  724.                      } // switch
  725.  
  726.             /*********************************************************/
  727.             } else {
  728.                 //we do this so each driver can customize the sql for
  729.                 //DB specific column types. 
  730.                 //Oracle needs BLOB types to be handled with a returning clause
  731.                 //postgres has special needs as well
  732.                 $values .= _adodb_column_sql($zthis, 'I', $type, $upperfname, $fnameq,
  733.                                                $arrFields, $magicq);
  734.             }
  735.             
  736.             if ($bad) continue;
  737.             // Set the counter for the number of fields that will be inserted.
  738.             $fieldInsertedCount++;
  739.             
  740.             
  741.             // Get the name of the fields to insert
  742.             $fields .= $fnameq . ", ";
  743.         }
  744.     }
  745.  
  746.  
  747.     // If there were any inserted fields then build the rest of the insert query.
  748.     if ($fieldInsertedCount <= 0)  return false;
  749.     
  750.     // Get the table name from the existing query.
  751.     if (!$tableName) {
  752.         if (!empty($rs->tableName)) $tableName = $rs->tableName;
  753.         else if (preg_match("/FROM\s+".ADODB_TABLE_REGEX."/is", $rs->sql, $tableName))
  754.             $tableName = $tableName[1];
  755.         else 
  756.             return false;
  757.     }        
  758.  
  759.     // Strip off the comma and space on the end of both the fields
  760.     // and their values.
  761.     $fields = substr($fields, 0, -2);
  762.     $values = substr($values, 0, -2);
  763.  
  764.     // Append the fields and their values to the insert query.
  765.     return 'INSERT INTO '.$tableName.' ( '.$fields.' ) VALUES ( '.$values.' )';
  766. }
  767.  
  768.  
  769. /**
  770.  * This private method is used to help construct
  771.  * the update/sql which is generated by GetInsertSQL and GetUpdateSQL.
  772.  * It handles the string construction of 1 column -> sql string based on
  773.  * the column type.  We want to do 'safe' handling of BLOBs
  774.  * 
  775.  * @param string the type of sql we are trying to create
  776.  *                'I' or 'U'. 
  777.  * @param string column data type from the db::MetaType() method  
  778.  * @param string the column name
  779.  * @param array the column value
  780.  * 
  781.  * @return string
  782.  * 
  783.  */
  784. function _adodb_column_sql_oci8(&$zthis,$action, $type, $fname, $fnameq, $arrFields, $magicq) 
  785. {
  786.     $sql = '';
  787.     
  788.     // Based on the datatype of the field
  789.     // Format the value properly for the database
  790.     switch($type) {
  791.     case 'B':
  792.         //in order to handle Blobs correctly, we need
  793.         //to do some magic for Oracle
  794.  
  795.         //we need to create a new descriptor to handle 
  796.         //this properly
  797.         if (!empty($zthis->hasReturningInto)) {
  798.             if ($action == 'I') {
  799.                 $sql = 'empty_blob(), ';
  800.             } else {
  801.                 $sql = $fnameq. '=empty_blob(), ';
  802.             }
  803.             //add the variable to the returning clause array
  804.             //so the user can build this later in
  805.             //case they want to add more to it
  806.             $zthis->_returningArray[$fname] = ':xx'.$fname.'xx';
  807.         } else if (empty($arrFields[$fname])){
  808.             if ($action == 'I') {
  809.                 $sql = 'empty_blob(), ';
  810.             } else {
  811.                 $sql = $fnameq. '=empty_blob(), ';
  812.             }            
  813.         } else {
  814.             //this is to maintain compatibility
  815.             //with older adodb versions.
  816.             $sql = _adodb_column_sql($zthis, $action, $type, $fname, $fnameq, $arrFields, $magicq,false);
  817.         }
  818.         break;
  819.  
  820.     case "X":
  821.         //we need to do some more magic here for long variables
  822.         //to handle these correctly in oracle.
  823.  
  824.         //create a safe bind var name
  825.         //to avoid conflicts w/ dupes.
  826.        if (!empty($zthis->hasReturningInto)) {
  827.             if ($action == 'I') {
  828.                 $sql = ':xx'.$fname.'xx, ';                
  829.             } else {
  830.                 $sql = $fnameq.'=:xx'.$fname.'xx, ';
  831.             }
  832.             //add the variable to the returning clause array
  833.             //so the user can build this later in
  834.             //case they want to add more to it
  835.             $zthis->_returningArray[$fname] = ':xx'.$fname.'xx';
  836.         } else {
  837.             //this is to maintain compatibility
  838.             //with older adodb versions.
  839.             $sql = _adodb_column_sql($zthis, $action, $type, $fname, $fnameq, $arrFields, $magicq,false);
  840.         }            
  841.         break;
  842.         
  843.     default:
  844.         $sql = _adodb_column_sql($zthis, $action, $type, $fname, $fnameq,  $arrFields, $magicq,false);
  845.         break;
  846.     }
  847.     
  848.     return $sql;
  849. }    
  850.     
  851. function _adodb_column_sql(&$zthis, $action, $type, $fname, $fnameq, $arrFields, $magicq, $recurse=true) 
  852. {
  853.  
  854.     if ($recurse) {
  855.         switch($zthis->dataProvider)  {
  856.         case 'postgres':
  857.             if ($type == 'L') $type = 'C';
  858.             break;
  859.         case 'oci8':
  860.             return _adodb_column_sql_oci8($zthis, $action, $type, $fname, $fnameq, $arrFields, $magicq);
  861.             
  862.         }
  863.     }
  864.         
  865.     switch($type) {
  866.         case "C":
  867.         case "X":
  868.         case 'B':
  869.             $val = $zthis->qstr($arrFields[$fname],$magicq);
  870.             break;
  871.  
  872.         case "D":
  873.             $val = $zthis->DBDate($arrFields[$fname]);
  874.             break;
  875.  
  876.         case "T":
  877.             $val = $zthis->DBTimeStamp($arrFields[$fname]);
  878.             break;
  879.  
  880.         default:
  881.             $val = $arrFields[$fname];
  882.             if (empty($val)) $val = '0';
  883.             break;
  884.     }
  885.  
  886.     if ($action == 'I') return $val . ", ";
  887.     
  888.     
  889.     return $fnameq . "=" . $val  . ", ";
  890.     
  891. }
  892.  
  893.  
  894.  
  895. function _adodb_debug_execute(&$zthis, $sql, $inputarr)
  896. {
  897.  
  898.     $ss = '';
  899.     if ($inputarr) {
  900.         foreach($inputarr as $kk=>$vv) {
  901.             if (is_string($vv) && strlen($vv)>64) $vv = substr($vv,0,64).'...';
  902.             $ss .= "($kk=>'$vv') ";
  903.         }
  904.         $ss = "[ $ss ]";
  905.     }
  906.     $sqlTxt = str_replace(',',', ',is_array($sql) ? $sql[0] : $sql);
  907.  
  908.     // check if running from browser or command-line
  909.     $inBrowser = isset($_SERVER['HTTP_USER_AGENT']);
  910.     
  911.     $dbt = $zthis->databaseType;
  912.     if (isset($zthis->dsnType)) $dbt .= '-'.$zthis->dsnType;
  913.     if ($inBrowser) {
  914.         $ss = htmlspecialchars($ss);
  915.         if ($zthis->debug === -1)
  916.             ADOConnection::outp( "<br>\n($dbt): ".htmlspecialchars($sqlTxt)."   <code>$ss</code>\n<br>\n",false);
  917.         else 
  918.             ADOConnection::outp( "<hr>\n($dbt): ".htmlspecialchars($sqlTxt)."   <code>$ss</code>\n<hr>\n",false);
  919.     } else {
  920.         ADOConnection::outp("-----\n($dbt): ".$sqlTxt."\n-----\n",false);
  921.     }
  922.  
  923.     $qID = $zthis->_query($sql,$inputarr);
  924.     
  925.     /* 
  926.         Alexios Fakios notes that ErrorMsg() must be called before ErrorNo() for mssql
  927.         because ErrorNo() calls Execute('SELECT @ERROR'), causing recursion
  928.     */
  929.     if ($zthis->databaseType == 'mssql') { 
  930.     // ErrorNo is a slow function call in mssql, and not reliable in PHP 4.0.6
  931.         if($emsg = $zthis->ErrorMsg()) {
  932.             if ($err = $zthis->ErrorNo()) ADOConnection::outp($err.': '.$emsg);
  933.         }
  934.     } else if (!$qID) {
  935.         ADOConnection::outp($zthis->ErrorNo() .': '. $zthis->ErrorMsg());
  936.     }
  937.     
  938.     if ($zthis->debug === 99) _adodb_backtrace(true,9999,2);
  939.     return $qID;
  940. }
  941.  
  942.  
  943. function _adodb_backtrace($printOrArr=true,$levels=9999,$skippy=0)
  944. {
  945.     if (PHPVERSION() < 4.3) return '';
  946.      
  947.     $html =  (isset($_SERVER['HTTP_USER_AGENT']));
  948.     $fmt =  ($html) ? "</font><font color=#808080 size=-1> %% line %4d, file: <a href=\"file:/%s\">%s</a></font>" : "%% line %4d, file: %s";
  949.  
  950.     $MAXSTRLEN = 128;
  951.  
  952.     $s = ($html) ? '<pre align=left>' : '';
  953.     
  954.     if (is_array($printOrArr)) $traceArr = $printOrArr;
  955.     else $traceArr = debug_backtrace();
  956.     array_shift($traceArr);
  957.     array_shift($traceArr);
  958.     $tabs = sizeof($traceArr)-2;
  959.     
  960.     foreach ($traceArr as $arr) {
  961.         if ($skippy) {$skippy -= 1; continue;}
  962.         $levels -= 1;
  963.         if ($levels < 0) break;
  964.         
  965.         $args = array();
  966.         for ($i=0; $i < $tabs; $i++) $s .=  ($html) ? '   ' : "\t";
  967.         $tabs -= 1;
  968.         if ($html) $s .= '<font face="Courier New,Courier">';
  969.         if (isset($arr['class'])) $s .= $arr['class'].'.';
  970.         if (isset($arr['args']))
  971.          foreach($arr['args'] as $v) {
  972.             if (is_null($v)) $args[] = 'null';
  973.             else if (is_array($v)) $args[] = 'Array['.sizeof($v).']';
  974.             else if (is_object($v)) $args[] = 'Object:'.get_class($v);
  975.             else if (is_bool($v)) $args[] = $v ? 'true' : 'false';
  976.             else {
  977.                 $v = (string) @$v;
  978.                 $str = htmlspecialchars(substr($v,0,$MAXSTRLEN));
  979.                 if (strlen($v) > $MAXSTRLEN) $str .= '...';
  980.                 $args[] = $str;
  981.             }
  982.         }
  983.         $s .= $arr['function'].'('.implode(', ',$args).')';
  984.         
  985.         
  986.         $s .= @sprintf($fmt, $arr['line'],$arr['file'],basename($arr['file']));
  987.             
  988.         $s .= "\n";
  989.     }    
  990.     if ($html) $s .= '</pre>';
  991.     if ($printOrArr) print $s;
  992.     
  993.     return $s;
  994. }
  995.  
  996. ?>